@keyframes mobileIn{
  0%{
    transform: translateY();
  }
}

.navbar{
  width: 100%;
  height: 50px;
  position: sticky;
  top: 0;
  background-color: rgba(41, 41, 41, 0.8);
  z-index: 2;
}


.center-navbar-items{
margin: 0 auto;
width: 60%;
height: 100%;
display: flex;
align-items: center;
position: relative;
}

.navbar-left{
margin-right: auto;

}

.navbar-left, .navbar-right{
padding: 0 20px;
display: flex;
align-items: center;
gap: 10px;
}


#navbar-icon-text{
display: flex;
align-items: center;
gap: 5px;
color: #cd3c4a;
font-weight: 700;
font-size: 20px;
}

#navbarIcon{
width: 40px;
}

#navbar-discord-user{
width: 35px;
height: 35px;
object-fit: cover;
background-color: #222222;
object-position: center center;
border-radius: 200px;
}

.navbar-right-icon{
font-size: 12px;
transition: color 0.5s;
}

.login-icon{
font-size: 25px;
transition: color 0.5s;
}

.arrow-down{
font-size: 10px;
transition: color 0.5s;
}

.navbar-tab-item{
display: flex;
align-items: center;
gap: 5px;
transition: color 0.5s;
}

.navbar-tab-item:hover, .navbar-tab-item:hover .arrow-down, .navbar-tab-item:hover .navbar-right-icon, .navbar-tab-item:hover .login-icon {
color: #cd3c4a;

}



.account-btn:hover {
  transform:scale(1.1);
}

.currency-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.currency-container img {
  width: 20px;
  height: 20px;
}


.accountBoxPopup{
  position: absolute;
  width: 28%;
  display: none;
  flex-direction: column;
  justify-content: center;

  text-align: center;
  background-color: #161616;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
  top: 7vh;
  right: calc(-10% + 35px);
  gap: 10px;
  padding: 10px 0;
  z-index: 5;
}

.accountBoxPopup a, .accountBoxPopup p {
  width: 100%;
  /* padding: 10px 0; */
  transition: color 0.5s;
  border-radius: 4px;
}

.accountBoxPopup i {
  transition: color 0.5s;
}


#THECOLO{
  color: #cd3c4a;
}

.accountBoxPopup .squad * {
  font-size: 12px;
  padding: 3px 0;
  color: rgb(149, 149, 149);
}

.accountBoxPopup hr {
border-color: #454545;
}

.accountBoxPopup .discord-name {
  font-size: 12px;
  /* color: rgb(149, 149, 149); */
}

.accountBoxPopup .discord-link, .accountBoxPopup .discord-link i {
  font-size: 12px;
  color: #7289DA;;
  /* color: rgb(149, 149, 149); */
}

.accountBoxPopup a:hover, .accountBoxPopup a:hover i, .accountBoxPopup a:hover p {
  color: #cd3c4a;
}

.send{
  background-color: #cd3c4a;
  padding: 3px 10px;
  border-radius: 4px;
}

.send2{
  background-color: #cd3c4a;
  padding: 3px 10px;
  border-radius: 4px;
  display: none;
}

.mobile-menu{
  display: none;
  font-size: 12px;
}

.mobile-menu:hover{
  cursor: pointer;
}

#mobile-nav-popup{
  background-color: rgba(41, 41, 41, 0.8); 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
  position: sticky;
  top: 0px;
  left: 0;
  padding: 10px;
  width: calc(100% - 20px);
  z-index: -5;
  display: none;
}

body{
  overflow-x: hidden;
}

@media only screen and (max-width: 480px) {
  .center-navbar-items{
    margin: 0;
    width: 100%;
    }

  .navbar-left, .navbar-right{
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;

  }

  #THECOLO{
    display: none;
  }
    
  #navbarIcon{
    width: 30px;

  }

  .send{
    display: none;
  }

  .send2{
    background-color: #cd3c4a;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
  }

  .navbar-left .navbar-tab-item{
    display: none;
  }
  .currency-container {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
  }
  
  .currency-container img {
    width: 15px;
    height: 15px;
  }

  .mobile-menu{
    display: block;
  }

  .accountBoxPopup{
    width: 60%;
    right: 0;
  }
}